add09e4e22a609fd4a970ee4eb21bb6e39a5541c,src/main/java/org/esa/beam/meris/cloud/CloudTopPressureOp.java,CloudTopPressureOp,computeTile,#Band#Tile#ProgressMonitor#,145
Before Change
if (l1bFlags.getSampleBit(x, y, Constants.L1_F_LAND)) {
nnInLand[0] = computeSurfAlbedo(lat.getSampleFloat(x, y), lon.getSampleFloat(x, y)); // albedo
nnInLand[1] = toar10.getSampleDouble(x, y);
nnInLand[2] = toar11.getSampleDouble(x, y)
/ toar10.getSampleDouble(x, y);
nnInLand[3] = Math.cos(szaRad);
nnInLand[4] = Math.cos(vzaRad);
After Change
} else {
nnInWater[0] = toar10.getSampleDouble(x, y);
nnInWater[1] = toar11XY_corrected
/ toar10.getSampleDouble(x, y);
nnInWater[2] = Math.cos(szaRad);
nnInWater[3] = Math.cos(vzaRad);
nnInWater[4] = Math.sin(vzaRad)